home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / e / ddmoduls.lha / dd_Modules.doc
Text File  |  1995-12-02  |  2KB  |  67 lines

  1. NAME
  2.  
  3.   dd_modules -- e class implementation sources
  4.  
  5. AUTHOR
  6.  
  7.   Leon Woestenberg of Digital Disturbance (Email: leon@stack.urc.tue.nl)
  8.  
  9. REQUIREMENTS
  10.  
  11.   AmigaE 3.2a or better.
  12.  
  13. DESCRIPTION
  14.  
  15.   This is a part of some e class implementations that I have in
  16.   development for use in my (future) programs. These are the ones
  17.   that actually are functioning.
  18.  
  19. BACKGROUND
  20.  
  21.   These sources are released to be shared amongst E programmers and
  22.   to help develop a public pool with e classes that can be used as
  23.   building blocks for applications. Motivation for release was the
  24.   Amiga E Object Oriented Project.
  25.  
  26. CONTENTS
  27.  
  28. dd_modules
  29.  
  30. dd_modules (root)
  31.   +-dd_debug (dir)
  32.   | +-dd_debugon (macros)      Easy way to implement serial debugging...
  33.   | +-dd_debugoff (macros)     and to disable it for final compilation.
  34.   +-dd_devices
  35.   | +-dd_timenotify (class)    Timeout notification using messages.
  36.   +-dd_dos (dir)
  37.   | +-dd_filenotify (class)    AmigaDOS file/dir change notification.
  38.   +-dd_graphics (dir)
  39.   | +-dd_maxtextlen (procs)    Fast textlength function.
  40.   +-dd_gui (dir)
  41.   | +-dd_gadgets (dir)
  42.   | | +-dd_bottomslider (instance) Window bottom slider bar with arrows.
  43.   | | | +-dd_borderslider (class) Window border slider.
  44.   | +-dd_windowcontrol (class) Window enabling/disabling class with...
  45.   | | +-dd_busypointer (class) Busypointer class for windows.
  46.   | +-dd_onlinehelp (class)    Online AmigaGuide help class.
  47.   +-dd_hardware (dir)
  48.   | +-dd_ciatimer (class)      Allocates any CIA hardware timer.
  49.   | +-dd_ciatimer_v40 (class)  The same, optimized for v40.
  50.   +-dd_messages (dir)
  51.     +-dd_messages (instance)        Builtin messages class instance.
  52.     +-dd_localemessages (instance)  Localized messages superclass instance
  53.       +-dd_messages (instance)      that inherits from builtin messages.
  54.  
  55. NOTES
  56.  
  57.    Programming OO objects is one thing, defining an abstract tree
  58.    is another. I find it very hard to determine how to build the tree
  59.    and how to implement inheritance, instances instead of classes etc.
  60.    The tree above is more or less random. Any help on this is welcome.
  61.  
  62.    Some classes are overprotected for programmer fools; it is filled
  63.    with pointer NIL checks and destructor related stuff. In a more
  64.    definite version, I throw these out, and assume everyone calls
  65.    a class destructor instead of doing CleanUp() or similars.
  66.  
  67.